/* ─────────────────────────────────────────
   CAPA RUSTIC — CUSTOM STYLES
   PARTIAL RECONSTRUCTION FROM MEMORY
   Sections I had in memory are filled in.
   Sections marked "GAP" need to be restored
   from a backup or rebuilt.
───────────────────────────────────────── */

/* GAP: lines ~1-40 likely contained CSS variables.
   These are my best guess based on usage — adjust to taste. */
:root {
  --b-bg: #f5f1ea;            /* warm off-white page background */
  --b-white: #ffffff;
  --b-black: #1a1814;          /* near-black text/accent */
  --b-text: #3a342c;           /* body text */
  --b-muted: #8a857c;          /* secondary text, breadcrumb sep */
  --b-border: #e0d9cc;         /* card / divider border */
  --b-card: #faf7f1;           /* slightly off-white card bg */
  --b-header-h: 80px;
}

html, body { background-color: var(--b-bg); }
body {
  font-family: 'Inter', sans-serif;
  color: var(--b-text);
  -webkit-font-smoothing: antialiased;
}
a { transition: opacity 0.2s, color 0.2s; }

/* ─────────────────────────────────────────
   1. HEADER
───────────────────────────────────────── */
.bul-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--b-white);
  border-bottom: 1px solid var(--b-border);
  height: var(--b-header-h);
  /* ─── iOS sticky touch fix ──────────────────────────────────────
     Force the header onto its own GPU compositor layer. Without this,
     iOS Safari kills touch responsiveness on sticky elements during
     and after momentum scrolling. The translate3d + will-change keep
     the layer promoted so taps register instantly while scrolling. */
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000;
          perspective: 1000;
  /* Make sure the header consumes its own touches and doesn't pass them through */
  pointer-events: auto;
  isolation: isolate;
}

/* Make sure children are positioned in normal flow so hit-testing
   always finds them on top of the sticky header layer. */
.bul-header-inner,
.bul-header-right,
.bul-account-wrap,
.bul-icon-btn,
.bul-hamburger {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
/* The hamburger needs extra z-priority since it sits at the right edge
   where overlapping ::before/::after content from siblings could cover it. */
.bul-hamburger {
  z-index: 2;
}

.bul-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991.98px) {
  /* Less right padding on mobile so the hamburger sits closer to the edge,
     making it easier to hit even if your thumb is a few pixels off. */
  .bul-header-inner { padding: 0 12px 0 16px; }
}

/* Nav takes available space, right side stays compact */
.bul-nav-left { flex: 1; }

/* Mobile: logo shows in header-right */
.bul-header-right .bul-logo {
  text-decoration: none !important;
  margin-right: 8px;
}

/* Nav left */
.bul-nav-left { align-items: center; }
.bul-nav-left ul {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 0;
}
.bul-nav-left ul li { position: relative; margin: 0; }
.bul-nav-left ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--b-text);
  padding: 8px 10px;
  display: block;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.bul-nav-left ul li a:hover,
.bul-nav-left ul li.active > a { color: var(--b-black); opacity: 1; text-decoration: underline; }

/* Dropdown */
.bul-nav-left ul li ul {
  position: absolute;
  top: 100%; left: 0;
  min-width: 200px;
  background-color: var(--b-white);
  border: 1px solid var(--b-border);
  border-top: 2px solid var(--b-black);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  /* Closing: wait ~280ms before starting to hide, so the user has a grace
     period to move from the parent link down into the dropdown. */
  transition: opacity 0.15s ease 0.28s,
              transform 0.15s ease 0.28s,
              visibility 0s linear 0.43s;
  z-index: 1000;
  padding: 6px 0;
}
/* Invisible hover-bridge so the mouse can cross from the parent link into the
   dropdown without losing :hover on the parent <li>. */
.bul-nav-left ul li ul::before {
  content: "";
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.bul-nav-left ul li:hover > ul,
.bul-nav-left ul li > ul:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* Opening: appear immediately, no delay. */
  transition: opacity 0.15s ease 0s,
              transform 0.15s ease 0s,
              visibility 0s linear 0s;
}
.bul-nav-left ul li ul li a {
  font-size: 13px;
  padding: 9px 18px;
  text-transform: none;
  color: var(--b-text);
  text-decoration: none !important;
}
.bul-nav-left ul li ul li a:hover { background-color: var(--b-bg); color: var(--b-black); opacity: 1; }

/* Logo center */
.bul-logo { text-align: center; }
.bul-logo a { display: inline-block; }
.bul-logo img { height: 40px; width: auto; margin: 0 auto; }
.bul-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--b-black);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Header right */
.bul-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

/* Mobile brand on left (hidden on desktop via d-lg-none utility) */
.bul-mobile-brand {
  align-items: center;
  text-decoration: none !important;
  margin-right: auto;
}
.bul-mobile-brand .bul-logo-text {
  font-size: 22px;
  line-height: 1;
}
@media (max-width: 991.98px) {
  .bul-mobile-brand { display: inline-flex; }
  .bul-header-right { margin-left: auto; }
}

/* Social icons */
.bul-social { align-items: center; gap: 4px; margin-right: 4px; }
.bul-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--b-text);
  font-size: 15px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.bul-social a:hover { background-color: var(--b-bg); color: var(--b-black); opacity: 1; }

/* Icon buttons (account, search) */
.bul-icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--b-text);
  font-size: 18px;
  border-radius: 50%;
  transition: background 0.12s ease, color 0.12s ease, transform 0.08s ease;
  text-decoration: none !important;
  /* Mobile tap optimization — eliminates iOS 300ms double-tap-zoom delay */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}
/* Hover only on devices that actually have hover (desktop), so mobile doesn't "stick" */
@media (hover: hover) {
  .bul-icon-btn:hover { background-color: var(--b-bg); color: var(--b-black); opacity: 1; }
}
/* Instant tactile feedback on tap — fires the moment finger touches */
.bul-icon-btn:active {
  background-color: var(--b-bg);
  color: var(--b-black);
  transform: scale(0.92);
  transition-duration: 0s;
}

/* Account dropdown */
.bul-account-wrap { position: relative; }
.bul-account-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background-color: var(--b-white);
  border: 1px solid var(--b-border);
  border-top: 2px solid var(--b-black);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1001;
  padding: 6px 0;
}
.bul-account-wrap.open .bul-account-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.bul-dropdown-name {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--b-muted);
  padding: 8px 16px 4px;
}
.bul-account-dropdown a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--b-text);
  padding: 9px 16px;
  text-decoration: none !important;
  transition: background 0.2s;
}
.bul-account-dropdown a:hover { background-color: var(--b-bg); color: var(--b-black); opacity: 1; }

/* Hamburger — generous touch target so right/bottom edges always register */
.bul-hamburger {
  position: relative;
  display: flex; flex-direction: column; gap: 5px;
  /* Visible icon stays 36×36 worth of bars, but the hit area is 48×48 */
  width: 48px; height: 48px;
  padding: 14px 12px;
  box-sizing: border-box;
  background: none; border: none; cursor: pointer;
  margin-left: auto;
  /* Mobile tap optimization */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.08s ease;
  /* Stay on top of any sibling that might overflow into this row */
  z-index: 5 !important;
  pointer-events: auto !important;
  /* Make sure nothing else can steal the right edge — sit flush right with
     a tiny right-pad so the touch target reaches the actual screen edge. */
  margin-right: -8px;
  padding-right: 16px;
}
/* Invisible overlay covers the entire button so it always wins hit-tests,
   even when GPU-promoted siblings shift around during sticky-scroll. */
.bul-hamburger::after {
  content: '';
  position: absolute;
  inset: -4px;
  z-index: 1;
}
.bul-hamburger:active {
  transform: scale(0.92);
  transition-duration: 0s;
}
.bul-hamburger span {
  display: block; height: 1.5px; background: var(--b-black);
  border-radius: 2px;
  position: relative;
  z-index: 0;
  pointer-events: none;
}

/* Global mobile-tap optimization for the rest of the touchable header bits.
   Eliminates the 300ms double-tap-zoom delay and the gray iOS tap flash. */
.bul-mobile-brand,
.bul-account-toggle,
.bul-account-dropdown a,
.offcanvas-btn,
.offcanvas-close,
.bul-drawer-close,
.bul-drawer-links a,
.bul-mobile-link,
.bul-mobile-toggle,
.bul-page-btn,
.bul-page-num,
.bul-page-go,
.scroll-top {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── Mobile Drawer ── */
.bul-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 280px; height: 100vh;
  background-color: var(--b-black);
  z-index: 1100;
  overflow-y: auto;
  flex-direction: column;
  padding-bottom: 40px;
}
.bul-drawer.open { display: flex; }

.bul-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bul-drawer-close {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 20px; cursor: pointer;
  transition: color 0.2s;
}
.bul-drawer-close:hover { color: #fff; }

.bul-drawer-nav { flex: 1; }

.bul-drawer-links {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bul-drawer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}
.bul-drawer-links a:hover { color: #fff; opacity: 1; }

.bul-drawer-contact {
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bul-drawer-contact p { margin: 4px 0; }
.bul-drawer-contact a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.bul-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1099;
}
.bul-overlay.open { display: block; }

/* Announce bar */
.bul-announce-bar {
  background: var(--b-black);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.bul-announce-bar a { color: #fff; text-decoration: underline; }

.rustic-page-spacer { height: 0; }

/* ─────────────────────────────────────────
   2. TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--b-black);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }
p { line-height: 1.65; margin: 0 0 1em; }
a { color: var(--b-black); text-decoration: none; }
a:hover { opacity: 0.7; }

/* ─────────────────────────────────────────
   3. SECTION HEADERS / UTILITIES
───────────────────────────────────────── */
.bul-section {
  padding: 80px 0;
}
.bul-section--tight { padding: 48px 0; }
.bul-section--bg { background: var(--b-bg); }
.bul-section--card { background: var(--b-white); }
.bul-section--dark { background: var(--b-black); color: rgba(255,255,255,0.85); }
.bul-section--dark h1, .bul-section--dark h2, .bul-section--dark h3 { color: #fff; }

.bul-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.bul-section-head .bul-pd-eyebrow { color: #8a5a2b; }
.bul-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--b-black);
  margin: 8px 0 0;
  line-height: 1.15;
}
.bul-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--b-muted);
  line-height: 1.65;
  margin: 16px 0 0;
}

/* Utility containers */
.bul-container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.bul-container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.bul-text-center { text-align: center; }
.bul-mt-0 { margin-top: 0 !important; }
.bul-mb-0 { margin-bottom: 0 !important; }

/* ─────────────────────────────────────────
   4. RULES / DIVIDERS
───────────────────────────────────────── */
.bul-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: #8a5a2b;
  margin: 18px auto 22px;
  border: none;
}
.bul-rule--left { margin-left: 0; margin-right: 0; }
.bul-divider {
  border: none;
  border-top: 1px solid var(--b-border);
  margin: 48px 0;
}

/* ─────────────────────────────────────────
   5. INLINE LINKS
───────────────────────────────────────── */
.bul-inline-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--b-black);
  border-bottom: 1px solid var(--b-black);
  padding-bottom: 1px;
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.bul-inline-link:hover { opacity: 0.55; color: var(--b-black); }

/* ─────────────────────────────────────────
   6. BUTTONS
───────────────────────────────────────── */
.bul-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--b-black);
  color: #fff !important;
  padding: 12px 24px;
  text-decoration: none !important;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.bul-btn:hover { opacity: 0.8; }
.bul-btn-white {
  background-color: #fff;
  color: var(--b-black) !important;
}
.bul-btn-outline-white {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255,255,255,0.7) !important;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.bul-btn-outline-white:hover { opacity: 0.6; }

/* ─────────────────────────────────────────
   7. WHOLESALE SECTION
───────────────────────────────────────── */
.bul-wholesale-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 767px) {
  .bul-wholesale-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ─────────────────────────────────────────
   8. HOME HERO (shared baseline)
───────────────────────────────────────── */
.bul-hero {
  position: relative;
  min-height: calc(100vh - var(--b-header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.bul-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.bul-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.bul-hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 60px 0;
}
.bul-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.8);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.bul-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 24px;
  max-width: 720px;
}
.bul-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 0 36px;
}
.bul-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ─────────────────────────────────────────
   9. FEATURED / CATEGORY TILES (home page)
───────────────────────────────────────── */
.bul-home-cats { padding: 80px 0; background: var(--b-white); }
.bul-home-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 991px) { .bul-home-cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .bul-home-cats-grid { grid-template-columns: 1fr; } }

.bul-cat-tile {
  display: block;
  text-decoration: none !important;
  background: var(--b-card);
  border: 1px solid var(--b-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bul-cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(26,24,20,0.18);
  opacity: 1;
}
.bul-cat-tile-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
}
.bul-cat-tile-body { padding: 20px 22px; }
.bul-cat-tile-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--b-black);
  margin: 0 0 4px;
}
.bul-cat-tile-body p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--b-muted);
  margin: 0;
}

/* ─────────────────────────────────────────
   10. STORY / IMAGE-TEXT SPLIT (home, about)
───────────────────────────────────────── */
.bul-home-story { padding: 80px 0; background: var(--b-bg); }
.bul-home-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 767px) { .bul-home-story-grid { grid-template-columns: 1fr; gap: 32px; } }

.bul-home-story-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--b-text);
  margin: 0 0 14px;
}
.bul-home-story-text .bul-section-title { text-align: left; }
.bul-home-story-img img { width: 100%; height: auto; display: block; }

.bul-home-cta { padding: 80px 0; background: var(--b-black); color: #fff; text-align: center; }
.bul-home-cta .bul-section-title { color: #fff; text-align: center; margin-bottom: 16px; }
.bul-home-cta-inner p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 24px; }

/* ─────────────────────────────────────────
   11. CATALOG / PRODUCT LIST
───────────────────────────────────────── */
.bul-catalog-main { min-height: 60vh; }

.bul-category-header {
  background-color: #e8e4dc;
  border-bottom: 1px solid var(--b-border);
  padding: 32px 0 24px;
}
.bul-category-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--b-black);
  margin: 0 0 8px;
}

.bul-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--b-muted);
}
.bul-breadcrumb-nav a { color: var(--b-muted); text-decoration: none; }
.bul-breadcrumb-nav a:hover { color: var(--b-black); opacity: 1; }
.bul-bc-sep { color: var(--b-border); }
.bul-bc-active { color: var(--b-text); }

.bul-catalog-body { padding: 32px 0 64px; }

/* ─────────────────────────────────────────
   12. FILTER BAR / RESULTS BAR
───────────────────────────────────────── */
.bul-filter-bar,
.bul-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--b-border);
  margin-bottom: 32px;
}
.bul-filter-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}
.bul-filter-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bul-filter-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--b-muted);
  margin: 0 8px 0 0;
  line-height: 36px;
  display: inline-flex;
  align-items: center;
  height: 36px;
  flex-shrink: 0;
}
.bul-select,
.nice-select.bul-select {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: var(--b-text) !important;
  background-color: var(--b-white) !important;
  border: 1px solid var(--b-border) !important;
  border-radius: 0 !important;
  height: 36px !important;
  line-height: 34px !important;
  box-sizing: border-box !important;
  padding: 0 32px 0 12px !important;
  margin: 0 !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%238a857c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  vertical-align: middle !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: auto !important;
  transition: border-color 0.2s !important;
}
.bul-filter-left .bul-select,
.bul-filter-left .nice-select.bul-select { max-width: 220px !important; }

/* Hide nice-select's own chevron — we use a background-image chevron */
.nice-select.bul-select::after {
  display: none !important;
}
/* Make sure the current label text centers vertically */
.nice-select.bul-select .current {
  display: block !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--b-text) !important;
  line-height: 34px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
/* Dropdown list (open state) */
.nice-select.bul-select .list {
  border-radius: 0 !important;
  border: 1px solid var(--b-border) !important;
  border-top: 2px solid var(--b-black) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
  margin-top: 4px !important;
  max-height: 360px !important;
  overflow-y: auto !important;
  font-family: 'Inter', sans-serif !important;
  width: 100% !important;
  min-width: 100% !important;
}
.nice-select.bul-select .option {
  font-size: 12px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--b-text) !important;
  padding: 0 14px !important;
  min-height: 36px !important;
  line-height: 36px !important;
  background-color: var(--b-white) !important;
  border-left: 3px solid transparent !important;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s !important;
}
.nice-select.bul-select .option:hover,
.nice-select.bul-select .option.focus {
  background-color: rgba(138, 90, 43, 0.12) !important;
  color: var(--b-black) !important;
}
.nice-select.bul-select .option.selected,
.nice-select.bul-select .option.selected.focus {
  background-color: #8a5a2b !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-left-color: #5e3c1b !important;
}
.nice-select.bul-select .option.selected:hover {
  background-color: #6e4621 !important;
  color: #fff !important;
}

/* Cross-filter availability — driven by the JS that reads currentPageTags */

/* Available (matches the result set) — bold, rustic brown accent */
.nice-select.bul-select .option.option-available-tags {
  font-weight: 700 !important;
  color: var(--b-black) !important;
}
.nice-select.bul-select .option.option-available-tags::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #8a5a2b;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

/* Unavailable (no results would match this option) — faded + strikethrough */
.nice-select.bul-select .option.option-unavailable {
  color: var(--b-muted) !important;
  text-decoration: line-through !important;
  opacity: 0.5 !important;
  font-weight: 400 !important;
}
.nice-select.bul-select .option.option-unavailable:hover {
  background-color: rgba(0,0,0,0.025) !important;
  color: var(--b-muted) !important;
  opacity: 0.65 !important;
}
/* Don't apply strike when the unavailable option is currently selected
   (shouldn't really happen but defensive) */
.nice-select.bul-select .option.option-unavailable.selected {
  text-decoration: none !important;
  opacity: 1 !important;
  color: #fff !important;
}

.bul-select:focus,
.nice-select.bul-select.open { outline: none !important; border-color: var(--b-black) !important; }

@media (max-width: 767px) {
  .bul-filter-left .bul-select,
  .bul-filter-left .nice-select.bul-select { max-width: none !important; flex-basis: 100% !important; }

  /* Stack filter sections vertically on narrow viewports so dropdowns,
     result counts, and Clear sit on their own clean rows. */
  .bul-filter-bar,
  .bul-results-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .bul-filter-left,
  .bul-filter-right {
    width: 100%;
    flex: 0 0 auto;
    justify-content: space-between;
  }
  .bul-filter-right {
    padding-top: 4px;
    border-top: 1px solid var(--b-border);
  }
  .bul-filter-label { width: 100%; }
}
.bul-results-count {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--b-muted);
}
.bul-clear-btn {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--b-text);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.bul-clear-btn:hover { color: var(--b-black); opacity: 1; }

/* ─────────────────────────────────────────
   13. PRODUCT GRID
───────────────────────────────────────── */
.bul-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 8px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) { .bul-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 767px)  { .bul-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } }
@media (max-width: 480px)  { .bul-product-grid { grid-template-columns: 1fr; } }
.bul-product-card {
  position: relative;
  background: var(--b-white);
  border: 1px solid var(--b-border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), border-color 0.25s, box-shadow 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.bul-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(138,90,43,0.45);
  box-shadow: 0 6px 18px -8px rgba(26,24,20,0.12), 0 20px 42px -18px rgba(26,24,20,0.20);
}

.bul-product-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none !important;
  color: inherit;
}
.bul-product-link:hover { opacity: 1; color: inherit; }

/* Image area — clean white, image fully contained */
.bul-product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--b-white);
  padding: 16px;
  box-sizing: border-box;
  display: block;
}
@media (max-width: 767px) { .bul-product-img-wrap { height: 220px; padding: 12px; } }

.bul-product-img-wrap img,
.bul-product-img-wrap a img,
.bul-product-img-wrap .lightgallery img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.bul-product-card:hover .bul-product-img-wrap img { transform: scale(1.05); }

/* Brown accent line that sweeps in on hover (just above the info footer) */
.bul-product-img-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: #8a5a2b;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
  z-index: 2;
}
.bul-product-card:hover .bul-product-img-wrap::after { transform: scaleX(1); }
.bul-product-overlay { display: none; }
.bul-product-info {
  padding: 14px 18px 18px;
  background: var(--b-bg);
  border-top: 1px solid var(--b-border);
  flex: 1;
  text-align: left;
}
.bul-product-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--b-black);
  margin: 0 0 4px;
  line-height: 1.2;
  letter-spacing: 0;
}
.bul-product-dim {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--b-muted);
  margin: 0;
}
.bul-product-dim strong { color: var(--b-text); font-weight: 600; }
.bul-no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--b-muted);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

/* ─────────────────────────────────────────
   14. PAGINATION
───────────────────────────────────────── */
.bul-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 0;
  margin-bottom: 28px;
}
.bul-pagination-bottom {
  margin-top: 28px;
  margin-bottom: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--b-border);
}
.bul-page-nums {
  display: flex;
  align-items: center;
  gap: 4px;
}
.bul-page-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--b-text);
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.bul-page-num:hover { background: var(--b-bg); color: var(--b-black); opacity: 1; }
.bul-page-current {
  background: var(--b-black) !important;
  color: #fff !important;
  border-color: var(--b-black);
  cursor: default;
}
.bul-page-ellipsis {
  color: var(--b-muted);
  font-size: 13px;
  padding: 0 4px;
}
.bul-page-jump {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  height: 32px;
  line-height: 1;
}
.bul-page-jump-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--b-muted);
  line-height: 32px;
  display: inline-flex;
  align-items: center;
  height: 32px;
  margin: 0;
}
.bul-page-input {
  width: 56px;
  height: 32px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  border: 1px solid var(--b-border);
  background: var(--b-white);
  color: var(--b-text);
  padding: 0;
  vertical-align: middle;
  margin: 0;
}
.bul-page-input:focus { outline: none; border-color: var(--b-black); }
.bul-page-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  background: var(--b-black);
  color: #fff;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  vertical-align: middle;
  margin: 0;
  transition: opacity 0.2s;
}
.bul-page-go:hover { opacity: 0.85; }

/* Normalize Prev/Next pager buttons to match number/input heights */
.bul-pagination .bul-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  box-sizing: border-box;
  padding: 0 14px;
  line-height: 1;
  vertical-align: middle;
  margin: 0;
}

/* ─────────────────────────────────────────
   15. PRODUCT BADGES / STATUS PILLS
───────────────────────────────────────── */
.bul-pd-badge--new      { background: #8a5a2b; color: #fff; }
.bul-pd-badge--sale     { background: #c8543b; color: #fff; }
.bul-pd-badge--sold     { background: #555; color: #fff; }
.bul-pd-badge--pending  { background: #a98a4a; color: #fff; }
.bul-pd-badge--in-stock { background: #6b8e4e; color: #fff; }
.bul-pd-badge--coming   { background: var(--b-card); color: var(--b-text); border: 1px solid var(--b-border); }

/* Card-level corner badge (for product grid) */
.bul-product-img-wrap .bul-pd-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  margin: 0;
  font-size: 10px;
  padding: 5px 10px;
  letter-spacing: 0.12em;
}

/* Tag chips on the product card */
.bul-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}
.bul-product-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--b-muted);
  border: 1px solid var(--b-border);
  padding: 3px 8px;
  background: var(--b-bg);
}

/* ─────────────────────────────────────────
   16. ACCESS DENIED
───────────────────────────────────────── */
.bul-access-denied { padding: 80px 0; text-align: center; }
.bul-access-inner i { font-size: 36px; color: var(--b-muted); margin-bottom: 20px; display: block; }
.bul-access-inner h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--b-black); margin-bottom: 12px; }
.bul-access-inner p { color: var(--b-muted); margin-bottom: 24px; }

/* ─────────────────────────────────────────
   17. FORMS
───────────────────────────────────────── */
.bul-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 575px) { .bul-form-row { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   18. FOOTER
───────────────────────────────────────── */
.footer-wrapper.common-bg {
  background-color: #111 !important;
}
.footer-widget-title h5 {
  font-family: 'Inter', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.35) !important;
  margin-bottom: 16px !important;
}
.footer-widget-body a,
.footer-widget-body li {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.55) !important;
}
.footer-widget-body a:hover { color: #fff !important; opacity: 1 !important; }
.footer-social-link { display: flex; align-items: center; gap: 4px; }
.footer-social-link a {
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255,255,255,0.55) !important;
  font-size: 15px !important;
  border-radius: 50% !important;
  margin-right: 0 !important;
  background: none !important;
  transition: background 0.2s, color 0.2s !important;
}
.footer-social-link a:hover {
  background-color: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  opacity: 1 !important;
}
.copyright-text p {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  color: rgba(255,255,255,0.25) !important;
}
.copyright-text a { color: rgba(255,255,255,0.4) !important; }

/* ── Mobile Menu (CategoryMobileMenu) ── */
.bul-mobile-nav { padding: 0; }

.bul-mobile-menu,
.bul-mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bul-mobile-submenu {
  display: none;
  background: rgba(0,0,0,0.15);
}
.bul-mobile-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin: 0 !important;
}

/* Row: link + toggle button side by side */
.bul-mobile-row {
  display: flex;
  align-items: stretch;
  min-height: 48px;
  width: 100%;
}

/* All links share the same base style */
.bul-mobile-link {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
  transition: color 0.2s, background 0.2s;
  display: flex !important;
  align-items: center;
  padding: 0 0 0 20px !important;
  flex: 1;
  min-height: 48px;
}
.bul-mobile-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
  opacity: 1 !important;
}

/* Standalone link (no children) fills full width */
.bul-mobile-item > .bul-mobile-link {
  padding-right: 20px !important;
}

/* Toggle button */
.bul-mobile-toggle {
  background: none;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
  width: 48px;
  min-height: 48px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  padding: 0;
}
.bul-mobile-toggle i {
  transition: transform 0.25s ease;
  display: block;
}
.bul-mobile-toggle:hover { color: #fff; }

/* Level 2 */
.bul-mobile-submenu .bul-mobile-link {
  padding-left: 32px !important;
  font-size: 12px !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  color: rgba(255,255,255,0.65) !important;
  font-weight: 400 !important;
}
/* Level 3 */
.bul-mobile-submenu .bul-mobile-submenu .bul-mobile-link {
  padding-left: 44px !important;
  color: rgba(255,255,255,0.5) !important;
}

/* Fix missing cancel.png cursor from vendor style.css */
.off-canvas-wrapper .off-canvas-overlay { cursor: pointer; }

/* ── Product Detail Image ── */
.image-gallery-item { border: none !important; }

/* ─────────────────────────────────────────
   Product Detail (elevated)
   ───────────────────────────────────────── */
.bul-pd .bul-catalog-body { background: var(--b-bg); }
.bul-pd-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--b-black);
  margin: 0 0 10px;
}

/* nav row */
.bul-pd-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0 26px;
  border-bottom: 1px solid var(--b-border);
  margin-bottom: 36px;
}
.bul-pd-back {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--b-black);
  text-decoration: none !important;
  border-bottom: 1px solid var(--b-black);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.bul-pd-back:hover { opacity: 0.55; color: var(--b-black); }
.bul-pd-pager { display: flex; gap: 8px; }

.bul-page-btn {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--b-black);
  background: var(--b-white);
  border: 1px solid var(--b-border);
  padding: 10px 18px;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
}
.bul-page-btn:hover { background: var(--b-black); color: #fff; opacity: 1; }
.bul-page-disabled { opacity: 0.3; pointer-events: none; }

/* layout */
.bul-pd-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 64px;
}
@media (max-width: 900px) {
  .bul-pd-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* grid item wrappers — keep boxes flush at top */
.bul-pd-media,
.bul-pd-info {
  margin: 0;
  padding: 0;
  align-self: start;
  min-width: 0;
}

/* image panel */
.bul-pd-stage {
  background: var(--b-white);
  border: 1px solid var(--b-border);
  padding: 40px 24px;
  min-height: 560px;
  display: flex;
  align-items: center;
  margin-top: 0;
  box-shadow: 0 2px 4px rgba(26,24,20,0.03), 0 22px 48px -16px rgba(26,24,20,0.16);
}
/* Inner slide wrapper — fixed height so image always has space to fill */
.bul-pd-stage .image-gallery-item {
  width: 100%;
  height: 480px;
  padding: 8px;
  box-sizing: border-box;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .bul-pd-stage .image-gallery-item { height: 380px; }
}

/* Slick wrappers need to inherit height so the image area stays consistent */
.bul-pd-stage .slick-list,
.bul-pd-stage .slick-track,
.bul-pd-stage .slick-slide,
.bul-pd-stage .slick-slide > div { height: 100%; }
.bul-pd-stage .slick-slide > div { display: flex !important; align-items: center; }

/* Force the image to FILL the available space (scales tiny images up too) */
.bul-pd-stage .img-product,
.bul-pd-stage .image-gallery-item img,
.bul-pd-stage .lightgallery img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 auto !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
}
.bul-pd-stage .lightgallery {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.bul-pd-noimg {
  background: var(--b-card);
  border: 1px solid var(--b-border);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--b-muted);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}
.bul-pd-stage .slick-dots { margin-top: 14px; }
.bul-pd-stage .slick-dots li button:before { color: var(--b-muted); opacity: 0.5; }
.bul-pd-stage .slick-dots li.slick-active button:before { color: #8a5a2b; opacity: 1; }

/* info card */
.bul-pd-card {
  background: var(--b-white);
  border: 1px solid var(--b-border);
  padding: 36px 34px 30px;
  margin-top: 0;
  box-shadow: 0 2px 4px rgba(26,24,20,0.03), 0 22px 48px -16px rgba(26,24,20,0.16);
}
.bul-pd-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a5a2b;
  margin: 0 0 8px;
}
.bul-pd-eyebrow--sm { color: var(--b-muted); margin-bottom: 10px; }
.bul-pd-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.18;
  color: var(--b-black);
  margin: 0;
}
.bul-pd-rule {
  display: block;
  width: 52px;
  height: 2px;
  background: #8a5a2b;
  margin: 18px 0 22px;
}
.bul-pd-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 22px;
}
.bul-pd-badge--out { background: var(--b-black); color: #fff; }
.bul-pd-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--b-text);
  margin-bottom: 24px;
}

/* spec grid */
.bul-pd-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--b-border);
  border: 1px solid var(--b-border);
  margin: 0 0 24px;
}
.bul-pd-cell { background: var(--b-white); padding: 16px 18px; }
.bul-pd-cell dt {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--b-muted);
  margin: 0 0 6px;
}
.bul-pd-cell dd {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--b-black);
  margin: 0;
  line-height: 1.45;
}
.bul-pd-cell dd strong { font-weight: 600; }
.bul-pd-unit { color: var(--b-muted); font-size: 12px; }

/* tags */
.bul-pd-tags-wrap { margin-bottom: 22px; }
.bul-pd-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bul-pd-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--b-text);
  border: 1px solid var(--b-border);
  padding: 5px 11px;
  background: var(--b-bg);
}

/* notes */
.bul-pd-note { margin-bottom: 22px; }
.bul-pd-note-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--b-text);
  margin: 0;
  line-height: 1.6;
}

.bul-pd-pager--bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--b-border);
}

/* ─────────────────────────────────────────
   ACCOUNT
───────────────────────────────────────── */
.bul-account .bul-catalog-body { background: var(--b-bg); }

.bul-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .bul-account-grid { grid-template-columns: 1fr; gap: 24px; }
}

.bul-account-card {
  background: var(--b-white);
  border: 1px solid var(--b-border);
  padding: 32px 30px;
  box-shadow: 0 2px 4px rgba(26,24,20,0.03), 0 22px 48px -16px rgba(26,24,20,0.10);
  margin-bottom: 24px;
}
.bul-account-card:last-child { margin-bottom: 0; }

.bul-account-card-head { margin-bottom: 22px; }
.bul-account-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--b-black);
  margin: 4px 0 0;
  line-height: 1.2;
}

/* form fields */
.bul-field { margin-bottom: 18px; }
.bul-field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--b-muted);
  margin-bottom: 7px;
}
.bul-field input[type="text"],
.bul-field input[type="email"],
.bul-field input[type="password"],
.bul-field input[type="tel"],
.bul-field input[type="number"],
.bul-field select,
.bul-field textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--b-black);
  background: var(--b-white);
  border: 1px solid var(--b-border);
  padding: 11px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bul-field textarea {
  font-family: 'Inter', sans-serif;
  line-height: 1.55;
  resize: vertical;
  min-height: 90px;
}
.bul-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%231a1814' stroke-width='1.5' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.bul-field input:focus,
.bul-field select:focus,
.bul-field textarea:focus {
  outline: none;
  border-color: var(--b-black);
  box-shadow: 0 0 0 1px var(--b-black);
}
/* Red asterisk on labels whose paired input/select/textarea is required */
.bul-field:has(> input[required]) > label::after,
.bul-field:has(> select[required]) > label::after,
.bul-field:has(> textarea[required]) > label::after {
  content: " *";
  color: #c0392b;
  font-weight: 700;
  margin-left: 2px;
}
.bul-field-help {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--b-muted);
  margin: 8px 0 0;
}
.bul-field-help a {
  color: #8a5a2b;
  text-decoration: underline;
}
.bul-field-help a:hover { opacity: 0.7; }

.bul-form-actions {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--b-border);
  display: flex;
  gap: 12px;
}

/* sidebar info */
.bul-account-side { display: flex; flex-direction: column; }
.bul-account-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--b-black);
  margin: 0 0 4px;
}
.bul-account-meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--b-text);
  margin: 0 0 4px;
}
.bul-account-meta--muted { color: var(--b-muted); font-size: 12px; }

.bul-account-actions {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--b-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bul-link-action {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--b-black);
  text-decoration: none !important;
  border-bottom: 1px solid var(--b-black);
  padding-bottom: 2px;
  align-self: flex-start;
  cursor: pointer;
  transition: opacity 0.2s;
}
.bul-link-action:hover { opacity: 0.55; color: var(--b-black); }

/* danger */
.bul-account-card--danger { border-color: #c8543b; }
.bul-pd-eyebrow--danger { color: #c8543b !important; }
.bul-btn--danger {
  background-color: #c8543b !important;
  color: #fff !important;
  margin-top: 16px;
}
.bul-btn--danger:hover { opacity: 0.85; }

/* flash messages */
.bul-flash {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid;
}
.bul-flash--success {
  background: #f0f5ed;
  border-color: #9ab47a;
  color: #3d5a20;
}
.bul-flash--error {
  background: #fbeeea;
  border-color: #c8543b;
  color: #8a3422;
}

/* ─────────────────────────────────────────
   SCROLL-TO-TOP BUTTON (rustic override)
───────────────────────────────────────── */
.scroll-top {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--b-black) !important;
  color: #fff !important;
  border: 1px solid var(--b-black) !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  z-index: 998 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s, color 0.2s !important;
  box-shadow: 0 6px 20px -8px rgba(26,24,20,0.4) !important;
}
.scroll-top.show,
.scroll-top:not(.not-visible) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top.not-visible {
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
}
.scroll-top i {
  font-size: 18px !important;
  color: #fff !important;
  line-height: 1 !important;
}
.scroll-top:hover {
  background: var(--b-white) !important;
  color: var(--b-black) !important;
  opacity: 1 !important;
}
.scroll-top:hover i { color: var(--b-black) !important; }

/* ─────────────────────────────────────────
   OFFCANVAS SEARCH (rustic override) — compact pill
───────────────────────────────────────── */
.offcanvas-search-wrapper {
  position: fixed !important;
  inset: 0 !important;
  background-color: rgba(26,24,20,0.55) !important;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1200 !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 120px 24px 24px !important;
  box-sizing: border-box !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s !important;
}
.offcanvas-search-wrapper.open {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .offcanvas-search-wrapper { padding-top: 80px !important; }
}

.offcanvas-search-inner {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  height: auto !important;
  max-width: 620px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  display: block !important;
  transform: translateY(-8px);
  opacity: 0;
  /* CRITICAL: do NOT force visibility:visible here. The wrapper is
     `position: fixed; inset: 0;` with `z-index: 1200` (above the header).
     If this inner stays `visibility: visible` while the wrapper is hidden,
     the inner box still intercepts pointer/hover events across the entire
     viewport — silently killing :hover on the desktop menu dropdown
     (Accessories / Decorative Pillows / Furniture) the moment the cursor
     leaves the parent menu item. We let visibility inherit from the
     wrapper instead, so when the wrapper is hidden the inner is also
     non-interactive. */
  visibility: inherit;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), opacity 0.3s !important;
}
.offcanvas-search-wrapper.open .offcanvas-search-inner,
.offcanvas-search-inner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Kill the legacy nested container's full-height/centered layout — it was a flex column wrapper */
.offcanvas-search-wrapper .container {
  width: 100% !important;
  max-width: 620px !important;
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  display: block !important;
  background: transparent !important;
}

/* Close button — small X above the pill, on its right */
.offcanvas-close {
  position: absolute !important;
  top: -42px !important;
  right: 0 !important;
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 50% !important;
  color: rgba(255,255,255,0.85) !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}
.offcanvas-close:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
}
.offcanvas-close i {
  font-size: 13px !important;
  color: inherit !important;
}

/* The pill itself — compact dark block wrapping input + button */
.offcanvas-search-box {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  max-height: 56px;
  min-height: 0 !important;
  background: var(--b-black) !important;
  border-radius: 4px !important;
  box-shadow: 0 18px 48px -16px rgba(0,0,0,0.55) !important;
  display: block !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  transform: none !important;
  transition: none !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 575px) {
  .offcanvas-search-box { max-height: 48px; }
}
.offcanvas-search-box form,
.offcanvas-search-box .d-flex.bdr-bottom {
  display: flex !important;
  align-items: stretch !important;
  width: 100% !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.offcanvas-search-box input[type="text"],
.offcanvas-search-box #search-form-canvas {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: #fff !important;
  padding: 0 20px !important;
  height: 56px !important;
  line-height: 56px !important;
  box-sizing: border-box !important;
}
.offcanvas-search-box input::placeholder,
.offcanvas-search-box input::-webkit-input-placeholder {
  font-family: 'Inter', sans-serif !important;
  font-style: normal !important;
  font-size: 15px !important;
  color: rgba(255,255,255,0.4) !important;
  letter-spacing: 0 !important;
}

.offcanvas-search-box .search-btn {
  background: #fff !important;
  border: none !important;
  color: var(--b-black) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  padding: 0 22px !important;
  margin: 0 !important;
  height: 56px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-sizing: border-box !important;
  transition: background 0.2s, color 0.2s !important;
}
.offcanvas-search-box .search-btn:hover {
  background: var(--b-bg) !important;
  color: var(--b-black) !important;
  opacity: 1 !important;
}
.offcanvas-search-box .search-btn i {
  font-size: 15px !important;
  color: inherit !important;
  line-height: 1 !important;
}

@media (max-width: 575px) {
  .offcanvas-search-box input[type="text"],
  .offcanvas-search-box #search-form-canvas { padding: 0 14px !important; height: 48px !important; line-height: 48px !important; font-size: 14px !important; }
  .offcanvas-search-box .search-btn { padding: 0 16px !important; height: 48px !important; font-size: 11px !important; }
}

/* ═════════════════════════════════════════════════
   LEGACY RETHEME — eterna base → capa-rustic palette
   Replaces #869056 (sage green) with rustic brown (#8a5a2b)
   and forces Inter/Playfair typography across legacy pages.
   ═════════════════════════════════════════════════ */

/* ── Typography reset for legacy pages ── */
body,
.about-text-wrap h2 {
  font-family: 'Inter', sans-serif !important;
  color: var(--b-text) !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif !important;
  color: var(--b-black) !important;
}

/* ── Theme color swap (#869056 → #8a5a2b) ── */

/* Selection */
::-moz-selection { background: #8a5a2b !important; color: #fff !important; }
::selection      { background: #8a5a2b !important; color: #fff !important; }

/* Utility class */
.theme-color { background-color: #8a5a2b !important; }

/* Tooltip */
.tooltip > .tooltip-inner { background-color: #8a5a2b !important; }
.tooltip.bs-tooltip-top .arrow:before  { border-top-color: #8a5a2b !important; }
.tooltip.bs-tooltip-left .arrow:before { border-left-color: #8a5a2b !important; }

/* Slick arrows / dots */
.slick-arrow-style button.slick-arrow:hover { background-color: #8a5a2b !important; color: #fff !important; }
.slick-arrow-style_hero button.slick-arrow:hover { color: #8a5a2b !important; }
.slick-append button:hover { color: #8a5a2b !important; }
.slick-dot-style ul.slick-dots li.slick-active button { background-color: #8a5a2b !important; }

/* Custom checkbox / radio */
.custom-checkbox label a:hover,
.custom-checkbox .custom-control-label a:hover,
.custom-radio label a:hover,
.custom-radio .custom-control-label a:hover { color: #8a5a2b !important; }
.custom-checkbox input:checked ~ .custom-control-label:before,
.custom-checkbox .custom-control-input:checked ~ .custom-control-label:before,
.custom-radio input:checked ~ .custom-control-label:before,
.custom-radio .custom-control-input:checked ~ .custom-control-label:before {
  background-color: #8a5a2b !important;
  border-color: #8a5a2b !important;
}

/* Header top settings, dropdowns */
.header-top-settings ul li .dropdown-list li a:hover { color: #8a5a2b !important; }
.welcome-message a { color: #8a5a2b !important; }

/* Header configure icons */
.header-configure-area ul li a:hover { color: #8a5a2b !important; }
.header-configure-area ul li a .notification { background-color: #8a5a2b !important; }
.header-configure-area ul li.user-hover .dropdown-list li a:hover { color: #8a5a2b !important; }

/* Main menu */
.main-menu ul li:hover > a,
.main-menu ul li.active > a { color: #8a5a2b !important; }
.main-menu ul li ul.megamenu li:hover > a { color: #8a5a2b !important; }
nav.desktop-menu ul.dropdown > li:hover,
nav.desktop-menu ul.dropdown li > a:hover {
  background-color: rgba(138, 90, 43, 0.08) !important;
  color: var(--b-black) !important;
}

/* ── Dropdown stability fix (Accessories / Decorative Pillows, etc.) ──
   Symptom: with the header in its sticky state on desktop, the dropdown
   would disappear almost the instant the cursor left the parent menu
   item. Three things were combining to cause it:
     1. The base style.css gives the dropdown `transform: translateY(20px)`
        in its closed state. That's a 20px visual gap between the bottom
        of the parent <li> and the visible top of the dropdown while it's
        animating in. The old hover-bridge was only 14px tall, so part of
        that gap was uncovered "dead space".
     2. The base `transition: 0.4s` runs on *all* properties — including
        visibility — but with no close delay, so the moment the cursor
        crossed the gap the dropdown started fading out immediately.
     3. The parent <li>s in the new sticky header are short (small vertical
        padding), so the user spends less time on the parent before
        entering the gap.
   Fix: reduce the initial translate to 8px, enlarge the hover-bridge so
   it always overlaps the parent <li>, and add a ~250ms close grace so a
   brief mouse stray doesn't snap the dropdown shut. */
.main-menu ul li ul.dropdown {
  transform: translateY(8px) !important;
  /* IMPORTANT: keep pointer-events: auto even when "closed". The base
     style.css sets pointer-events: none, which meant the dropdown couldn't
     catch its own :hover the instant the cursor left the parent <li> — so
     the dropdown closed while the user's cursor was still inside it.
     Interactivity is gated by `visibility: hidden` (which kills events
     for free) rather than pointer-events. */
  pointer-events: auto !important;
  /* Close behaviour (no :hover): hold full opacity for 250ms (grace), then
     fade over 250ms, then flip visibility:hidden at 500ms. The grace gives
     the user time to dart the cursor back if they overshoot a short
     dropdown (Decorative Pillows = 5 items, Accessories = 9 items — both
     much shorter than Furniture, so easier to overshoot). */
  transition: opacity 0.25s ease 0.25s,
              transform 0.25s ease 0.25s,
              visibility 0s linear 0.5s !important;
}
.main-menu ul li:hover > ul.dropdown,
.main-menu ul li > ul.dropdown:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(0) !important;
  /* Opening: no delay. */
  transition: opacity 0.18s ease 0s,
              transform 0.18s ease 0s,
              visibility 0s linear 0s !important;
}
/* Invisible bridge above the dropdown so the mouse can travel from the
   parent menu item into the dropdown without crossing dead space. Sized
   to fully cover the 8px translate gap *and* overlap the parent <li> by
   ~20px so the hover never breaks mid-transition. */
.main-menu ul li ul.dropdown::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  height: 28px;
  background: transparent;
  pointer-events: auto;
}
/* The parent <a> needs its own pointer-events guarantee. Without this,
   the dropdown that I made `pointer-events: auto` everywhere (above) was
   catching the cursor before the dropdown's child <li>s could — which
   meant landing on the SECOND <li> (the first one *fully* clear of the
   ::before bridge) registered as a hover on the parent <ul> rather than
   on the <li>. The :hover state on the <ul> was technically fine, but
   the cursor-stopped scenario surfaced a Chrome quirk where the <ul>'s
   pointer-events:auto declaration shadowed its descendants until the
   cursor moved again. Forcing the children to declare pointer-events:
   auto explicitly fixes it. */
.main-menu ul li ul.dropdown li,
.main-menu ul li ul.dropdown li a {
  pointer-events: auto !important;
}
/* Eliminate the flex layout the dropdown <ul> inherits from `.main-menu ul`.
   `display: flex` + `flex-wrap: wrap` + `flex-basis: 100%` on the items is
   functionally block-like but can leave subpixel gaps between flex lines
   during browser rounding — and a cursor parked in that gap loses :hover
   on every item. Plain block layout has no such gap. */
.main-menu ul li ul.dropdown {
  display: block !important;
}
/* Make the entire row a click target. The base style.css leaves the
   dropdown <a> as inline, which means the hover background (and click
   area) only covers the word — empty space to the right of "MEH" or
   "Bird Cages" wasn't selectable. display:block + full width fixes it. */
.main-menu ul li ul.dropdown li a {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
/* Same treatment for second- and third-level dropdowns (open to the right). */
.main-menu ul li ul.dropdown li:hover > ul.dropdown,
.main-menu ul li ul.dropdown li ul.dropdown:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: visible !important;
}
.main-menu ul li ul.dropdown li ul.dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: -18px;
  width: 18px;
  height: 100%;
  background: transparent;
  pointer-events: auto;
}

/* Header search */
.header-search-box .header-serch-btn:hover { color: #8a5a2b !important; }

/* Mobile header */
.mobile-main-header .mobile-menu-toggler .mini-cart-wrap a:hover { color: #8a5a2b !important; }
.mobile-main-header .mobile-menu-toggler .mini-cart-wrap .notification { background-color: #8a5a2b !important; }
.mobile-main-header .mobile-menu-toggler .mobile-menu-btn .off-canvas-btn:hover { color: #8a5a2b !important; }
.mobile-menu li > a:hover { color: #8a5a2b !important; }
.mobile-menu li.menu-item-has-children span.menu-expand + a { color: var(--b-black) !important; }

/* Off-canvas widgets */
.off-canvas-contact-widget li a:hover { color: #8a5a2b !important; }
.off-canvas-social-widget a:hover { color: #8a5a2b !important; }
.off-canvas-wrapper .btn-close-off-canvas { background-color: #8a5a2b !important; }
.search-box-offcanvas form .search-btn:hover { color: #8a5a2b !important; }
.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle:hover { color: #8a5a2b !important; }

/* Buttons */
.btn-hero:hover { background-color: #8a5a2b !important; color: #fff !important; }
.btn-read:hover { background-color: #8a5a2b !important; border-color: #8a5a2b !important; color: #fff !important; }
.btn__bg { background-color: #8a5a2b !important; color: #fff !important; }
.btn__bg:hover { background-color: var(--b-black) !important; color: #fff !important; }
.btn-outline:hover { background-color: #8a5a2b !important; border-color: #8a5a2b !important; color: #fff !important; }
.btn-cart:hover { color: #8a5a2b !important; }
.btn-cart2 { background-color: #8a5a2b !important; color: #fff !important; }
.btn-cart2:hover { background-color: var(--b-black) !important; color: #fff !important; }
.store-link:hover { color: #8a5a2b !important; }
.store-link:after { background-color: #8a5a2b !important; }

/* Hero slider accent colors */
.hero-slider-content_2 h5,
.hero-slider-content_2 p,
.hero-slider-content_3 h5,
.hero-slider-content_3 p { color: #8a5a2b !important; }

/* Offcanvas search internal accents (legacy fallbacks) */
.offcanvas-search-box .bdr-bottom { border-color: rgba(255,255,255,0.4) !important; }

/* Service / tabs */
.single-choose-item:hover i { color: #8a5a2b !important; }
.tab-menu li a:hover { color: #8a5a2b !important; }
.tab-menu li a:before { background-color: #8a5a2b !important; }
.tab-menu li a.active { color: #8a5a2b !important; }
.tab-menu li a.active:before { opacity: 1 !important; visibility: visible !important; }

/* Product items (legacy grid/list) */
.product-caption .product-name a:hover { color: #8a5a2b !important; }
.manufacturer-name a:hover { color: #8a5a2b !important; }
.button-group a:hover { color: #8a5a2b !important; }
.product-label { background-color: #8a5a2b !important; }
.price-regular { color: #8a5a2b !important; }
.product-list-item .product-content-list .product-name a:hover { color: #8a5a2b !important; }
.group-product-name a:hover { color: #8a5a2b !important; }

/* Breadcrumb (legacy) */
.breadcrumb-wrap .breadcrumb .breadcrumb-item a:hover { color: #8a5a2b !important; }
.breadcrumb-wrap .breadcrumb .breadcrumb-item.active { color: #8a5a2b !important; }

/* Sidebar lists */
.categories-list li:hover { color: #8a5a2b !important; }
.shop-categories li:hover a { color: #8a5a2b !important; }
.shop-categories li:hover a span { background-color: #8a5a2b !important; color: #fff !important; }

/* Price range slider */
.price-range-wrap .price-range.ui-widget-content .ui-slider-range { background-color: #8a5a2b !important; }
.price-range-wrap .price-range.ui-widget-content .ui-slider-handle:before { background-color: #8a5a2b !important; }
.price-range-wrap .range-slider button.filter-btn:hover { background-color: #8a5a2b !important; color: #fff !important; }

/* Pagination (legacy) */
.paginatoin-area .pagination-box li a:hover { background-color: #8a5a2b !important; border-color: #8a5a2b !important; color: #fff !important; }
.paginatoin-area .pagination-box li.active a { background-color: #8a5a2b !important; color: #fff !important; }

/* Blog */
.blog-title a:hover { color: #8a5a2b !important; }
.blog-sidebar .blog-archive li a:hover { color: #8a5a2b !important; }
.blog-sidebar .blog-tags li a:hover { background-color: #8a5a2b !important; border-color: #8a5a2b !important; color: #fff !important; }
.blog-sidebar .search-btn:hover { background-color: #8a5a2b !important; border-color: #8a5a2b !important; }
blockquote { border-left-color: #8a5a2b !important; }
.recent-post-item .recent-post-description h4 a:hover { color: #8a5a2b !important; }
.blog-post-item .tag-line a:hover { color: #8a5a2b !important; }
.comment-section ul li .comment-body .reply-btn a:hover { background-color: #8a5a2b !important; border-color: #8a5a2b !important; color: #fff !important; }

/* Shop top bar */
.top-bar-left .product-view-mode a:hover,
.top-bar-left .product-view-mode a.active { color: #8a5a2b !important; }
.nice-select.open { border-color: #8a5a2b !important; }

/* Product details (legacy) */
.product-details-des .customer-rev a:hover { color: #8a5a2b !important; }
.product-details-des .useful-links a:hover { color: #8a5a2b !important; }
.product-details-des .share-icon a:hover { color: #8a5a2b !important; }
.product-details-des .group-product-table td a:hover { color: #8a5a2b !important; }
.product-review-info .tab-content .review-description .tab-des h3 { color: #8a5a2b !important; }
.product-countdown .single-countdown__time { color: #8a5a2b !important; }
.product-countdown .single-countdown:first-child { background-color: #8a5a2b !important; }

/* Checkout */
.checkoutaccordion h3 { border-top-color: #8a5a2b !important; }
.checkoutaccordion h3 span { color: #8a5a2b !important; }
.forget-pwd { color: #8a5a2b !important; }
.checkout-billing-details-wrap .single-input-item input:focus,
.checkout-billing-details-wrap .single-input-item input:active,
.checkout-billing-details-wrap .single-input-item textarea:focus,
.checkout-billing-details-wrap .single-input-item textarea:active,
.single-input-item input:focus,
.single-input-item input:active,
.single-input-item textarea:focus,
.single-input-item textarea:active { border-color: #8a5a2b !important; background-color: #fff !important; }

/* Cart */
.cart-table .table thead { background-color: #8a5a2b !important; }
.cart-table .table thead tr th { border-color: #8a5a2b !important; }
.cart-table .table tbody tr td a:hover { color: #8a5a2b !important; }
.cart-update-option .apply-coupon-wrapper form input:focus,
.cart-update-option .apply-coupon-wrapper form input:active { border-color: #8a5a2b !important; }
.cart-calculator-wrapper .cart-calculate-items .table tr td.total-amount { color: #8a5a2b !important; }

/* Compare */
.compare-table .table tbody tr td.product-image-title .category { color: #8a5a2b !important; }
.compare-table .table tbody tr td.product-image-title .title:hover { color: #8a5a2b !important; }
.compare-table .table tbody tr td.pro-ratting i { color: #8a5a2b !important; }

/* Login / Register */
.login-reg-form-wrap .login-reg-form-meta a { color: #8a5a2b !important; }

/* My Account (legacy) */
.myaccount-tab-menu a:hover,
.myaccount-tab-menu a.active { background-color: #8a5a2b !important; border-color: #8a5a2b !important; color: #fff !important; }
.myaccount-content .welcome a:hover { color: #8a5a2b !important; }
.myaccount-content .welcome strong { color: #8a5a2b !important; }
.saved-message { border-top-color: #8a5a2b !important; }

/* About */
.about-image-wrap:after { border-color: #8a5a2b !important; }

/* Team */
.team-member .team-thumb .team-social a:hover { background-color: #8a5a2b !important; border-color: #8a5a2b !important; color: #fff !important; }
.team-member .team-content h6 { color: #8a5a2b !important; }

/* Contact */
.contact-message form input:focus,
.contact-message form textarea:focus { border-bottom-color: #8a5a2b !important; background-color: #fff !important; }

/* Footer (legacy bits) */
.footer-widget-body li a:hover { color: #8a5a2b !important; padding-left: 5px; }
.copyright-text p a { color: #8a5a2b !important; }
.newsletter-inner .news-btn:hover { color: #8a5a2b !important; }

/* Anchor color base (legacy) */
a:hover, a:focus { color: var(--b-black); }

/* Soften lingering "common-bg" gray sections to rustic background */
.common-bg { background-color: var(--b-bg) !important; }

/* Generic green text fallback (anything that slipped through) */
[style*="869056"] { color: #8a5a2b !important; }
